Philosophy of scroll bars [closed]
Posted
by
Parkhid
on Programmers
See other posts from Programmers
or by Parkhid
Published on 2011-02-15T13:55:29Z
Indexed on
2011/02/15
15:34 UTC
Read the original article
Hit count: 188
Please suppose I want to design my own text editor . simply like notepad. Without using any richtextbox or other controls LIKE EDIT in C++. Main Handle is just a window in C++ or usercontrol in C#. The Question is here for scrolling option , how can I perform scrolling when user is typing. I mean vertical scrolling here . What is Philosophy of works of scroll bars in C++ windows or C# user controls ?
Should I Clear the (Usercontrol or Window) When User reaches to end of (Usercontrol or Window) and then Put caret on start of (Usercontrol or Window) ?
What about scrolling with thumb or hand scrolling ? How can I find the Text Position which scroll to ?
© Programmers or respective owner